home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Applications 1996 May / SGI IRIX 6.2 Applications 1996 May.iso / dist / impr_dev.idb / usr / impressario / src / libprintui / Makefile.z / Makefile
Makefile  |  1996-05-06  |  2KB  |  58 lines

  1. #! smake
  2. #**************************************************************************
  3. #*                                      *
  4. #*           Copyright (c) 1991 Silicon Graphics, Inc.              *
  5. #*            All Rights Reserved                    *
  6. #*                                      *
  7. #*         THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI             *
  8. #*                                      *
  9. #* The copyright notice above does not evidence any actual of intended    *
  10. #* publication of such source code, and is an unpublished work by Silicon *
  11. #* Graphics, Inc. This material contains CONFIDENTIAL INFORMATION that is *
  12. #* the property of Silicon Graphics, Inc. Any use, duplication or         *
  13. #* disclosure not specifically authorized by Silicon Graphics is strictly *
  14. #* prohibited.                                  *
  15. #*                                      *
  16. #* RESTRICTED RIGHTS LEGEND:                          *
  17. #*                                      *
  18. #* Use, duplication or disclosure by the Government is subject to         *
  19. #* restrictions as set forth in subdivision (c)(1)(ii) of the Rights in   *
  20. #* Technical Data and Computer Software clause at DFARS 52.227-7013,      *
  21. #* and/or in similar or successor clauses in the FAR, DOD or NASA FAR     *
  22. #* Supplement. Unpublished - rights reserved under the Copyright Laws of  *
  23. #* the United States. Contractor is SILICON GRAPHICS, INC., 2011 N.       *
  24. #* Shoreline Blvd., Mountain View, CA 94039-7311                          *
  25. #**************************************************************************
  26. #*
  27. #* Makefile (user.makefile) - libprintui, printing UI library
  28. #*
  29. #* $Revision: 1.4 $
  30. #*
  31. #*
  32. #**************************************************************************
  33.  
  34. include /usr/include/make/commondefs
  35.  
  36. TARGETS = libprintui.a
  37.  
  38. CFILES = PrintBox.c \
  39.      PrintOptionPanel.c \
  40.      Utilities.c
  41.  
  42. CVERSION = -xansi
  43. OPTIMIZER = -O2
  44.  
  45. LCINCS = -I.
  46. LCDEFS = -DFUNCPROTO -DNARROWPROTO -DNeedFunctionPrototypes
  47. ARFLAGS = crls
  48. LINTFLAGS = -u -z -y -woff 91
  49.  
  50. default all: $(TARGETS)
  51.  
  52. include $(COMMONRULES)
  53.  
  54. $(TARGETS): $(OBJECTS)
  55.     $(AR) $(ARFLAGS) $(TARGETS) $?
  56.  
  57. install: all
  58.